From: Jeremy BĂ­cha Date: Tue, 7 Oct 2025 23:16:21 +0000 (-0400) Subject: tests: Skip failing tests on riscv64 X-Git-Tag: archive/raspbian/1.28.2-1+rpi1^2^2^2^2~1 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com//%22stanciumarius94%40gmail.com/%22/%22http:/www.example.com/%22stanciumarius94%40gmail.com/%22?a=commitdiff_plain;h=656ffb7568f64ef5e410c666d5fea1a683af9ef3;p=gst-plugins-bad1.0.git tests: Skip failing tests on riscv64 The avtpcvfdepay test says one of the test elements timed out so maybe extending its timeout would be a better fix Gbp-Pq: Name Skip-failing-tests-riscv64.patch --- diff --git a/tests/check/meson.build b/tests/check/meson.build index 38e7b70d..0889f9e5 100644 --- a/tests/check/meson.build +++ b/tests/check/meson.build @@ -30,7 +30,7 @@ base_tests = [ [['elements/aesdec.c'], not aes_dep.found(), [aes_dep]], [['elements/aiffparse.c'], get_option('aiff').disabled()], [['elements/asfmux.c'], get_option('asfmux').disabled()], - [['elements/audiovisualizer.c'], get_option('audiovisualizers').disabled()], + [['elements/audiovisualizer.c'], get_option('audiovisualizers').disabled() or host_machine.cpu_family() == 'riscv64'], [['elements/autoconvert.c'], get_option('autoconvert').disabled()], [['elements/autovideoconvert.c'], get_option('autoconvert').disabled()], [['elements/avwait.c'], get_option('timecode').disabled()], @@ -146,7 +146,7 @@ if host_machine.system() != 'windows' [['elements/avtpcrfsync.c'], true, [avtp_dep], ['../../ext/avtp/gstavtpcrfutil.c', '../../ext/avtp/gstavtpcrfbase.c']], [['elements/avtpcrfutil.c'], not avtp_dep.found(), [avtp_dep], ['../../ext/avtp/gstavtpcrfutil.c', '../../ext/avtp/gstavtpcrfbase.c']], [['elements/avtpcvfpay.c'], not avtp_dep.found(), [avtp_dep]], - [['elements/avtpcvfdepay.c'], not avtp_dep.found(), [avtp_dep]], + [['elements/avtpcvfdepay.c'], not avtp_dep.found() or host_machine.cpu_family() in ['alpha', 'hppa', 'riscv64'], [avtp_dep]], [['elements/avtpsink.c'], not avtp_dep.found(), [avtp_dep]], [['elements/avtpsrc.c'], not avtp_dep.found(), [avtp_dep]], [['elements/clockselect.c'], get_option('debugutils').disabled()],